home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha Extra 2004 January / CyberMycha Extra 1-2004 (Poland) (Disc 2).bin / Pippi / myoh.dir / 00048_setStaticInterval.ls < prev    next >
Encoding:
Text File  |  2001-09-05  |  181 b   |  16 lines

  1. property cnt
  2.  
  3. on beginSprite me
  4.   cnt = 6
  5. end
  6.  
  7. on exitFrame me
  8.   if cnt < 39 then
  9.     cnt = cnt + 1
  10.   else
  11.     cnt = 6
  12.   end if
  13.   sendSprite(cnt, #setStatic, 0)
  14.   go(the frame)
  15. end
  16.